home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / VD08BIN.ZIP / usr / include / db / DBProperties.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-13  |  601 b   |  24 lines

  1. /*====================================================================
  2.                              DBProperties                             
  3. ====================================================================*/
  4.  
  5. #ifndef _DBPROPERTIES_H_
  6. #define _DBPROPERTIES_H_
  7.  
  8. #ifndef _DBENTITIES_H_
  9. #include "DBEntities.h"
  10. #endif
  11.  
  12. @protocol DBProperties
  13. -(id <DBEntities>) entity;
  14. -(BOOL) isKey;
  15. -(BOOL) isReadOnly;
  16. -(BOOL) isSingular;
  17. -(BOOL) matchesProperty: (id <DBProperties>) aProperty;
  18. -(const char *) propertyName;
  19. -propertyType;
  20. -(BOOL) setName: (const char *) aName;
  21. @end
  22.  
  23. #endif
  24.